home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / Chess / Source / Square3D.h < prev    next >
Text File  |  1994-04-01  |  511b  |  25 lines

  1. @interface Square3D : Cell
  2. {
  3.   float background;
  4.   int row;
  5.   int color;
  6.   int type;
  7.   NXRect location;
  8.   BOOL moving;
  9. }
  10.  
  11. - setMoving: (BOOL)flag;
  12. - (BOOL) moving;
  13. - (int)type;
  14. - (int)colorVal;
  15. - setType: (int)t color:(int)c;
  16. - setRow: (int)r;
  17. - setBackground: (float) b;
  18. - (NXRect *)location;
  19. - setLocation: (NXRect *)r;
  20. - highlight: (const NXRect *)f inView: v;
  21. - drawSelf:(const NXRect *)cellFrame inView:v;
  22. - drawInside:(const NXRect *)cellFrame inView:v;
  23. - drawBackground:(const NXRect *)f inView: v;
  24. @end
  25.